import { VariantProps } from 'class-variance-authority'; import type * as React from 'react'; declare const shareUIVariants: (props?: ({ background?: "gray" | "default" | null | undefined; type?: "list" | "card" | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; export interface ShareUIProps extends React.HTMLAttributes, VariantProps { } declare const ShareUI: { ({ className, type, background, ref, ...props }: ShareUIProps & { ref?: React.Ref; }): React.JSX.Element; displayName: string; }; declare const ShareTitle: { ({ className, ref, ...props }: React.HTMLAttributes & { ref?: React.Ref; }): React.JSX.Element; displayName: string; }; declare const ShareDescription: { ({ className, ref, ...props }: React.HTMLAttributes & { ref?: React.Ref; }): React.JSX.Element; displayName: string; }; declare const ShareTextContainer: { ({ className, ref, ...props }: React.HTMLAttributes & { ref?: React.Ref; }): React.JSX.Element; displayName: string; }; declare const ShareButton: { ({ className, ref, ...props }: React.HTMLAttributes & { ref?: React.Ref; }): React.JSX.Element; displayName: string; }; declare const ShareKakaoButton: (props: React.HTMLAttributes) => React.JSX.Element; declare const ShareUrlButton: (props: React.HTMLAttributes) => React.JSX.Element; export { ShareButton, ShareDescription, ShareKakaoButton, ShareTextContainer, ShareTitle, ShareUI, ShareUrlButton }; //# sourceMappingURL=share-ui.d.ts.map