mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-01-20 16:49:46 -06:00
12 lines
234 B
TypeScript
12 lines
234 B
TypeScript
import * as React from 'react';
|
|
|
|
interface RtlProviderProps {
|
|
children?: React.ReactNode;
|
|
value?: boolean;
|
|
}
|
|
|
|
declare const RtlProvider: React.FC<RtlProviderProps>;
|
|
export const useRtl: () => boolean;
|
|
|
|
export default RtlProvider;
|